home *** CD-ROM | disk | FTP | other *** search
- ;============================================================================
- ; --- TED V1.61aß ---
- ;============================================================================
- ;
- ; One more time, a new version of TED is out !
- ;
- ; This version is the 1.61aß.
- ; Why ß ? Just because the HELP is not complete, and because of few
- ; persistents bugz in the integrated debugger.
- ;
- ; Syntax highlite:
- ; ----------------
- ;
- ; New feature. In effect, now you are able to see your
- ; assembler source in colors. Highlite works for the Symbols,
- ; Reserved Keywords, Comments, Hexadecimal, Binary and Decimal numbers, and for
- ; the strings.
- ; Just one restriction, *DO NOT* PkLite or Diet or LzExe TED.EXE.
- ; With it, that's easier to make your own sources. Less syntax errors.
- ; Example:
-
- .Model Small
- .386
-
- .Stack 200H
-
- .Data
-
- Foo db 'Ted is cool!', 10h, 13h
- Num db 225, 345
-
- .code
- Locals
-
- MyProc Proc FAR
- Arg Arguments : Word
- Mov AX, Word ptr ES:[DI]
- endp
-
- end
-
- ; This version contains certainly some bugz, so if you find 'em please
- ; gimme the info.
- ; If you are interested in a new feature, just ask it !
- ; You can send all your comments to:
- ;
- ; Emmanuel Thioux
- ; 912 Capitola avenue
- ; Apt #16
- ; Capitola C.A
- ; 95010 U.S.A
- ;
- ; That's all guys
-
- ; Integrated Debugger:
- ; --------------------
- ;
- ; Great new feature !
- ; With this integrated debugger you can trace your porgram.
- ; For the moment only F7 (Trace) works. For the next version I hope I'll
- ; integrate Step and Breakpoints.
- ; So, there's a Registers Window, Dump Window and Stack Window. Each of
- ; 'em contains a local menu.
- ; But, in this version some things are wrong.
- ; Moreover, The debugger is not reliable at this point (Memory
- ; problems), some local commands don't work.
- ; But, it's a good preview for the future TED.
- ;
- ; **********************************************************************
- ;
- ;
- ; Enjoy !
- ;
- ; Manu.
- ;
- ; **********************************************************************
-
-